projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8b8c95
)
Make GtkRecentManager use standard icon names for themed icons
author
Matthias Clasen
<mclasen@redhat.com>
Wed, 13 Oct 2010 14:18:03 +0000
(10:18 -0400)
committer
Matthias Clasen
<mclasen@redhat.com>
Wed, 13 Oct 2010 14:18:03 +0000
(10:18 -0400)
gtk/gtkrecentmanager.c
patch
|
blob
|
history
diff --git
a/gtk/gtkrecentmanager.c
b/gtk/gtkrecentmanager.c
index 5f5c01204638934e351c0c6f55e0c2c2bf1e45ea..c14f9e5af44f6bed58718e4224354fecf7a31aae 100644
(file)
--- a/
gtk/gtkrecentmanager.c
+++ b/
gtk/gtkrecentmanager.c
@@
-1912,9
+1912,9
@@
gtk_recent_info_get_icon (GtkRecentInfo *info,
{
if (info->mime_type &&
strcmp (info->mime_type, "x-directory/normal") == 0)
- retval = get_icon_fallback (
GTK_STOCK_DIRECTORY
, size);
+ retval = get_icon_fallback (
"folder"
, size);
else
- retval = get_icon_fallback (
GTK_STOCK_FILE
, size);
+ retval = get_icon_fallback (
"document-x-generic"
, size);
}
return retval;